My python is installed on my c drive. However, I'd like wget to be installed on my d drive instead so that I can import wget from my environment I created in my d drive. I used jupyter notebook to run the code. Any solution?
Asked
Active
Viewed 61 times
-1

Rativitea Rativitea
- 13
- 4
-
You need to make sure you've got the install location on your `PATH` variable. – Miguel Guthridge Jul 09 '22 at 13:52
1 Answers
0
See How to install package to another directory using pip for installing the package to another directory by using —target
And Accessing modules from outside env to access it by modifying sys.path

Brian Keith
- 255
- 1
- 3
- 13