I cannot install pandas or NumPy packages even though all other packages work - why?

Hi, I'm able to install many packages including selenium, pyautogui, requests, etc but when I try to install Pandas I get the below error.  I'm downloading the packages with the options checkboxed and proxy entered but that shouldn't affect it because all other packages install well.  

Pandas install Error: "distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('numpy>=1.13.3')"

When I try and install NumPyI get the following error: 

error: "Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/"

Do I need to install Microsoft Visual C++ on my windows 10 pc?

0
Avatar
Permanently deleted user

I was able to install both Numpy and Pandas on the command line after entering my proxy  using "pip install pandas" and "pip install numpy".  Both successfully installed but I'm still getting the same error in PyCharm.

0

>Do I need to install Microsoft Visual C++ on my windows 10 pc

Most likely, yes.

>I was able to install both Numpy and Pandas on the command line

Are you sure you've installed them for the same interpreter? Do you see them in the package list in PyCharm? If not, please try installing them using `pip install` for the same interpreter.

0
Avatar
Permanently deleted user

Worked without needing to install Microsoft Visual C++!

0

Actually PyCharm installs package from path C:\Users\<user-name>\PyCharmProject\pyCharmProject1\venv\bin>pip install pandas

In this path there is python different version. This is happened, because while creating project in PyCharm, it automatically sets wrong version of python. To confirm this run same command manually from that path. So, while creating project, select python version from C://ProgramFiles/Python38/bin.

0

请先登录再写评论。