I'm using this command line to install facebook prophet that I'll gonna use for my capstone project in stock price prediction.
Asked
Active
Viewed 293 times
-1
-
Update: I already managed to install prophet in anaconda command prompt using the following command lines: `conda install -c conda-forge prophet` `conda install -c conda-forge/label/broken prophet` `conda install -c conda-forge/label/prophet_dev prophet` Now the problem that I have is [this](https://imgur.com/a/q2dshlt) – Jiyo May 23 '22 at 21:41
1 Answers
1
How to install modules using command window:
1st- (In a python terminal) Run This:
import os
import sys
print(os.path.dirname(sys.executable)+'\Scripts\\')
2nd- Copy returned path into file explorer
3rd- Click in file window again (highlighting text) and simply type "cmd" and hit enter
That should open the command prompt window IN THE RIGHT PATH
Now, (in the command prompt window) type:
pip install (and whatever you want installed)

Austin G
- 11
- 2