![]() |
pip install syntax - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: pip install syntax (/thread-29723.html) |
pip install syntax - biprabu - Sep-17-2020 Hi All, i am new to python , need help in installing pyautogui From juypter notebook i coded pip install pyatuogui its working but in python terminal its not working. Also let me know which editor can i use for coding Thanks RE: pip install syntax - Aspire2Inspire - Sep-17-2020 Are you using a virtual environment? Check you pip list using: pip listpackages installed in Jupyter are likely stored in a different place to your global packages. Check using the above command if not install it again in cmd? Goodluck RE: pip install syntax - Larz60+ - Sep-17-2020 FYI use command in command window, not interactive python script: pip install pyautogui
|