• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

trying import in Python

pegasis

Member
on windows 8.1:


my python folder is C:\Python27

python will not run from the command prompt.. it will only run once I have changed directories to C:\Python27

I have updated the path to include C:\Python27

why doesn't it run from the command prompt?



I can't seem to import anything in idle

I get this error: import nympy

Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import nympy
ImportError: No module named nympy

I am trying to import nympy, matplotlib, and sklearnit

please help
 
when you add it to the path, you need to restart the command prompt. change takes effect only on the newly created processes.
 
Back
Top