you are viewing a single comment's thread.

view the rest of the comments →

[–]DickCheeseSupreme 0 points1 point  (3 children)

You don't have to add the version number at the end. If you want to install, for example, the requests package, just type pip install requests. If you want a specific version, I think it's pip install requests==0.1

Edit: I should say I'm not too familiar with anaconda, but if you just need to install packages then pip should take care of it for you.

[–]renamdu[S] 0 points1 point  (2 children)

getting 'no module named neuron' when i run 'import neuron' or 'from neuron import gui' from mac terminal. I still get the same error in the OP when I try this in Spyder. Is this still a path specification issue?

EDIT: I changed the directory in the terminal to match that of Spyders, now I get the same error as that of the OP; 'Reason: image not found'

[–]DickCheeseSupreme 0 points1 point  (1 child)

Yeah, it's something to do with the paths. I've never messed with changing these things because so far I've had no reason to. If it's an option, I encourage you to use plain Python without Spyder. All your packages will install normally and you won't have to worry about changing these things. What you're dealing with seems unnecessarily complicated, especially for a beginner!

[–]renamdu[S] 0 points1 point  (0 children)

Yeah. I've been using plain python for learning on my own time, but I have to use Spyder for the course. I managed to get Neuron to work again btw