简体   繁体   中英

Trying to install Quandl on Python

I recently changed my OS from Windows 10 to Linux, and I'm trying to install quandl packages using the pip install method. I did some googling and found the following command:

$ pip install quandl

but it wasn't successfully installed.

I guess it is due to the lack of pip in your new linux computer.

Follow this instruction to install pip first, https://pip.pypa.io/en/stable/installing/

If you have pip and installed quandl, but you can't access it in python. It maybe due to the path problem and I think you have to edit it.

export PATH=/usr/local/bin:$PATH
sudo pip install quandl

为我工作。

Worked for me:

pip3 install --user Quandl (for python3)

pip install --user Quandl (for Python2)

sudo apt-get install python-pip

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM