I developed software to scrape data on SpaceX:
Capsules, Rockets, Cores, Roadsters, SpaceX Info
to use the software you need Python as well as PIP to install the modules.
- Install Python3.9. Click here
- Clone this repository:
git clone https://github.com/MaxenceR26/SpaceX
- Install virtualenv package:
pip install virtualenv
- Create the virtual environment:
- Windows:
C:\>c:\Python39\python -m venv c:\path\to\myenv
. The "path\to\myenv" must be the projects folder - Linux, inside the projects folder:
python3.9 -m venv env
- Windows:
- Start the virtual environment:
- Windows:
C:\>venv\Scripts\activate.bat
- Linux:
source env/bin/activate
- Windows:
- Install the dependencies:
pip install -r requirements.txt
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python -m pip install requirements.txt
pip install requirements.txt