Skip to content

Installation

adeyosemanputra edited this page Oct 24, 2024 · 1 revision

Welcome to the pygoat wiki!

requirements

install

To create a virtual environment for Python on a Mac, you can:
  1. Install pip
  2. Install virtualenv
  3. Start the virtual environment 
Step | Command
-- | --
Install pip | sudo easy_install pip if you get an error "pip command not found"
Install virtualenv | sudo pip install virtualenv
Start virtualenv | virtualenv env inside the folder where you want to store your code
Activate virtualenv | source env/bin/activate
Clone this wiki locally