Skip to content

Instantly share code, notes, and snippets.

View reillysiemens's full-sized avatar
🦀
cargo install coffee

Reilly Tucker Siemens reillysiemens

🦀
cargo install coffee
View GitHub Profile
@reillysiemens
reillysiemens / node_nvm_npm_bower.md
Last active June 1, 2022 16:50
Working with Node.js

Using nvm

The easiest way to get started with Node.js is to install [nvm (Node Version Manager)][nvm]. nvm will allow you to install multiple versions of Node.js and switch between them at any time.

Installing nvm

nvm's installation documentation instructs us to install nvm like so

@reillysiemens
reillysiemens / virtualenv_and_pip.md
Last active August 29, 2015 13:56
A brief introduction to using virtualenv and pip with Python 3.

###Using Virtualenv

To create and use a new Python 3 virtual environment you can run the commands below.

####Creating a Virtualenv

virtualenv -p /usr/bin/python3 ~/.virtualenvs/<name of your virtualenv>