Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EC2 Instance Notebook and new updates for instance type lists #16

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions notebooks/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## Setup

Prior to running a notebook, you should create a new environment and install the required packages. You can do this by running the following commands:

1. Create a new environment
2. Activate the environment
3. Install the required packages

### Environment setup

#### Conda environments

```bash
# Create a new conda environment
conda create --name <env_name> python=3.11
conda activate <env_name>
```
#### Virtual environments

```bash

# Create a new virtual environment
python3 -m venv <env_name>
source <env_name>/bin/activate
```



### Install required packages

```bash
# Install the required packages
pip install --upgrade pip
pip install -r requirements.txt # or whatever other requirements file you have
```
6 changes: 6 additions & 0 deletions notebooks/ec2-instance-type-selection-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
jupyter
ipython
requests
pandas
matplotlib
git+ssh://[email protected]/AllenInstitute/aibs-informatics-aws-utils.git@main#egg=aibs_informatics_aws_utils
Loading
Loading