user1471980
user1471980

Reputation: 10656

how do you install python package without dependencies

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

Answers (1)

ljk321
ljk321

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

Related Questions