프로그래밍/Python 파이썬

파이썬 - pypy3 설치

Heidong 2021. 10. 4. 21:58
반응형

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/questions/62534863/can-anyone-help-me-installing-pypy-on-windows

 

Can anyone help me installing PYPY on windows?

I would like to know the more brief version of the installation of pypy on Windows apart from original documentation available on https://doc.pypy.org/en/latest/windows.html. Any help in showing a ...

stackoverflow.com

 

cmd창 열고 - pypy3.exe 경로 입력하고 한칸 띄우고 -m 한칸띄고 ensurepip - 엔터

 

 

 

 

나의 pypy 설치 경로는

C:\Program Files (x86)\pypy3.7-v7.3.5-win64

 

C:\Program Files (x86)\pypy3.7-v7.3.5-win64\pypy3.exe

 

 

pypy3에서 pip 설치 허용하기 위해서

 

cmd창에서 

pypy3 -m ensurepip 설치하고 성공 떠야함

 

성공하면 이제 pip 설치 가능한데 얘는

 

pypy3 -m pip 이런식으로 사용해야함

install 할꺼면

 

pypy3 -m pip install bs4 이런식으로

 

다른 인터넷글들은 다 pypy로 시작을해서 왜 안되지하면서 몇시간을 날림

버전 꼭 써주자 pypy3

 

아니면 파이썬에서 설치했던 pip들을 가져와도 되는데 조심하면서 가져오자

C:\Users\Hyeok\AppData\Local\Programs\Python\Python38\Lib\site-packages

보통 파이썬 설치하면 pip 경로

 

여기서 필요한 애들을 골라서 똑같이 pypy3의 site-packages 안에 복붙.

반응형