Reputation: 10656
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?
Upvotes: 23
Views: 20100
Reputation: 16790
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
Upvotes: 37