I want to incorporate an instabot in my code.
I downloaded Instabot and installed it through the Windows' command prompt pip install -U instabot as Spyder didn't recognize my user: C:\Users\(My Name) is not recognised as an internal or external command or external command, an excutable program or a command file.
While installing it through the Windows' command prompt, I realised I didn't even have Python installed. So I did installed Python along with pip, and then could actually finalise installing Instabot. I also manually added the Python directory in the system environment so the command prompt could find it, as installing Python was not enough for using it in the command prompt.
The actual problem is located at the first line, so I really don't need to share more of my code I think:
from instabot import Bot
> ImportError: cannot import name 'Bot' from 'instabot' (unknown location)
Now, I have a hint this is a directory/library problem but I don't know where it is in Spyder. I saved instabot in the same directory as my Python project.
EDIT: I have a breakthrough! As I'm using Spyder through Anaconda, I shouldn't use pip as a command but rather conda. Else "it will break my installation" in the words of Spyder itself.
C:\Users\(My Name) is not recognised as an internal or external command or external command, an excutable program or a command file.