S.Chakraborty
S.Chakraborty

Reputation: 1

How to install Python Pynamical package (module)

I am using PyCharm Community Edition 2017 with interpreter python 3.6.1. I want to install pynamical module.But it is showing error. I am posting here the error message:

E:\untitled>pip install pynamical

FileNotFoundError: [WinError 2] The system cannot find the file specified
error: command 
'c:\\users\\s.chakraborty\\appdata\\local\\programs\\python\\python36\\ 
python.exe' failed with exit status 1

Can anyone help me?

Upvotes: 0

Views: 163

Answers (2)

gboeing
gboeing

Reputation: 6412

The easiest way to install pynamical is to open a command prompt (on windows) or a terminal (on mac/linux) then run conda install -c conda-forge pynamical per the documentation.

Upvotes: 0

Beyhan Gul
Beyhan Gul

Reputation: 1259

In pycharm has a module to install new package easly.

Go to

File->Settings->Project:Name->Project Interpreter and click '+'

enter image description here

Upvotes: 2

Related Questions