0

I am trying to install quandl in PyCharm. I am trying to do this by going into project interpreter clicking the "+" button and then selecting Quandl. I am getting the following error.

OSError: [Errno 13] Permission denied: '/Users/raysabbineni/Library/Python/2.7'

I have installed pandas and sklearn in the above way so I'm not sure what the error with quandl is.

ray
  • 903
  • 1
  • 13
  • 31

2 Answers2

2
import quandl

Within Python 3 or Pycharm you can not uppercase "Q" in quandl. same case like import tkinter, not Tkinter as before

KeepLearning
  • 517
  • 7
  • 10
  • Those minimum character limits are there to force you to be descriptive and explain. Don't fill it up with garbage. – Nic Oct 26 '17 at 15:28
1

try with sudo pip install (your package) on the terminal sudo pip install quandl Or Sudo easy_install quandl

Ismail
  • 53
  • 9
  • I am able to install it on terminal using sudo pip install quandl --user python. However, I am not able to access it in pycharm. My understanding was that I need to install it using pycharm to import quandl in pycharm – ray Oct 18 '16 at 15:18
  • In this case check where you install it like with which version of python. There is a chance that you install it with python 2.7 while you are using python 3 like interpreter on pycharm. – Ismail Oct 18 '16 at 15:20
  • I have python 2.7 installed and am using python 2.7 in the interpreter on pycharm – ray Oct 18 '16 at 15:24
  • Try refreshing pycharm – Ismail Oct 18 '16 at 15:28
  • Go on the menu of pycharm view->terminal and then try to command pip install quandl in the terminal of pycharm. There is no way that it will not work – Ismail Oct 18 '16 at 15:37
  • so the terminal local to my pycharm does not work. I get an error that says Can't open local terminal java.io.exception – ray Oct 18 '16 at 15:42