Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cstorm125/ds_env
Data Science Environment Setup
https://github.com/cstorm125/ds_env
Last synced: about 1 month ago
JSON representation
Data Science Environment Setup
- Host: GitHub
- URL: https://github.com/cstorm125/ds_env
- Owner: cstorm125
- Created: 2020-01-04T16:24:32.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T06:17:28.000Z (about 2 years ago)
- Last Synced: 2023-03-04T03:22:21.709Z (almost 2 years ago)
- Size: 113 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Science Environment Setup
Installing on Ubuntu 18.04 LTS (Windows 10)
## Install Python 3 and Compilers
```
sudo apt update && upgrade
sudo apt install python3 python3-pip ipython3
sudo apt-get install build-essential python3-dev python3-pip python3-setuptools python3-wheel python3-cffi libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info
```
## Setup Virtual Environment
```
sudo apt install virtualenv
pip3 install virtualenv
virtualenv venv --python=python3
```## Activate Virtual Environment
```
source /home/cstorm125/venv/bin/activate
```## Replicate Kaggle Kernel Libraries (as of 2020/01/04)
Install line by line the libraries `pip freeze > requirements.txt` from Kaggle kernel
```
cat requirements.txt | xargs -n 1 pip install
```