프로그래밍/Python 파이썬
-
-
파이썬 - pypy3 설치프로그래밍/Python 파이썬 2021. 10. 4.
pypy를 설치하고, 경로 잘 외워두고 이건 설치 다 하고 나서 하는것 pip ensure 해주기 https://levelup.gitconnected.com/how-to-run-pypy-as-your-vs-code-jupyter-interpreter-70836adf44c6 How to run PyPy as your VS Code Jupyter interpreter Ever wondered how you can run PyPy as an interpreter for your Jupyter notebooks in Visual Studio Code? Well, I have. And it took me forever… levelup.gitconnected.com https://stackoverflow.com/q..
-
파이썬 - cmd 창에서 파이썬 .py 파일 실행프로그래밍/Python 파이썬 2021. 10. 4.
환경 변수 추가 되어 있다는 전제하에 내가 실행시킬 파이썬 프로그램 위치 찾아서 cmd창 열고 -> cd 입력하고 한칸 띄우고 경로 붙여넣기 (붙여넣기 안되면 마우스 우클릭 -> cmd창에서 붙여넣기임) -> 엔터 예시) cd /Users/user/Documents/image 그럼 cmd창에서 이제 내가 실행 시킬 파이썬 파일이 있는 위치까지 왔으니까 실행하고 싶은 파이썬 파일을 실행 하자 이제 python 한칸띄우고 lotto.py 입력하고 엔터 python lotto.py 혹시 안되면 python3 버전 명시 해줘야 할 수 있음. python3 lotto.py로 시도. python3 lotto.py