DEV Community

Youngjoon Won
Youngjoon Won

Posted on

2

python/nvm install in windows

python in windows

open powershell from start menu

type python and continue install

python
Enter fullscreen mode Exit fullscreen mode
python --version 
Enter fullscreen mode Exit fullscreen mode

install pip, refer to https://pip.pypa.io/en/stable/installation/

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
Enter fullscreen mode Exit fullscreen mode
python get-pip.py
Enter fullscreen mode Exit fullscreen mode

install requests lib

pip install requests
Enter fullscreen mode Exit fullscreen mode

Image description

nvm in windows

download and install nvm.exe from https://github.com/coreybutler/nvm-windows/releases

reopen powershell with administrator mode (right click on powershell menu and select administrator)

nvm on
nvm install lts
nvm list
Enter fullscreen mode Exit fullscreen mode

mine is node version 20.12.2

nvm use 20.12.2
cd C:\Program Files\nodejs
Enter fullscreen mode Exit fullscreen mode

Image description

npx is under nodejs directory. now you can use it.

Image description

Neon image

Build better on Postgres with AI-Assisted Development Practices

Compare top AI coding tools like Cursor and Windsurf with Neon's database integration. Generate synthetic data and manage databases with natural language.

Read more β†’

Top comments (0)

Jetbrains image

Build Secure, Ship Fast

Discover best practices to secure CI/CD without slowing down your pipeline.

Read more

πŸ‘‹ Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay