Reputation: 851
i'm trying to add new libraries to python_path, but I failed.
This is the new libraries path
and here my already added and recognized by external IDEs like pycharm libraries
so those new libraries I can work on, but only inside their apps. I want to use them into PyCharm.
What should I do?
Upvotes: 1
Views: 210
Reputation: 939
I think your problem could come from the space in the "Program Files" folder so you can try using the short names path.
Open a dos command on the folder you want to use ([SHIFT]+ right mouse click => Command prompt here)
Type this command to get the dos form path (source)
for %I in (.) do echo %~sI
Then use this path form as advised in the comments
Upvotes: 1