Python Forum

Full Version: pip install syntax
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
Are you using a virtual environment?

Check you pip list using:

pip list
packages 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
FYI use command in command window, not interactive python script:
pip install pyautogui