Reputation: 81
I cant figure out for the life of me how in the world to install How to Quandl on Anaconda 3.4 on OSX.
I have tried using: pip install quandl
, I have tried moving files around and opening the setup.py
file and I keep getting a syntax error. It is extremely annoying that I cant get this done even after a ton of googling. I would greatly appreciate it someone out there who has done this could please clue me in on how to install quandl
. Thanks.
Upvotes: 3
Views: 15723
Reputation: 81
Solution is indeed to type
pip install Quandl
However this simply needs to be typed in the OSX terminal or command prompt and NOT in the Anaconda workspace!
It works perfectly.
Upvotes: 3
Reputation: 2233
Run the following at the appropriate command prompt:
conda install quandl
hope it works !
Upvotes: 0
Reputation: 21
If you are using anaconda:
conda install pip
Else:
pip install quandl
Upvotes: 1
Reputation: 129
Anaconda has the install https://anaconda.org/anaconda/quandl
From that page, to install this package with conda run:
conda install -c https://conda.anaconda.org/anaconda quandl
Upvotes: 3
Reputation: 748
I sometimes have luck running the 2to3 command in terminal. Run
2to3 *.py
in the main project folder and any subdirectories containing .py files.
Upvotes: 0