I am trying to install a python module without dependencies.
I run:
python setup.py install
but this install dependencies, any ideas how could do this?
I am trying to install a python module without dependencies.
I run:
python setup.py install
but this install dependencies, any ideas how could do this?
If you are using setup.py
, you could use:
python setup.py develop --no-deps
If you're using pip
, try:
pip install --no-deps