In-class discussion: Introductory workshop

Yeah. Can I just do ‘conda update’ and expect everything to upgrade?

1 Like

Thank you,
I meant to ask about the newer concepts/different concepts covered in this course compared to the previous one’s syllabus…

To not disturb the existing python set up, you can create an alias command like this and add this to ~/.bash_profile or ~/basrc

alias CONDA3=“export PATH=/Users/username/anaconda3/bin:$PATH”

You can enable anaconda when you exectute CONDA3 alias command.

how did you get it ? I have a github student pack . Where to find the promo code ??

Answered my own question about port 8888:

sudo ufw allow 8888

from here

1 Like

yes, use conda environment do to this

For environment.yml, you can do:

conda env create -f environment.yml

For requirements.txt, you can do:

pip install -r requirements.txt

These commands will ensure the right environment gets created with all the dependencies built in.

5 Likes

Since we’ll be doing most of the programming using pytorch, I thought it’d be good to know at the beginning whether my current configuration is good to go.

A selection of articles/blogs on building your own DL station.
(click on the window below to expand the links in a more comfy version)

How do you run the Jupiter notebook in the background ?

Thanks @yinterian :smiley:

jupyter notebook &

1 Like

I just started a new bash session, let the Jupyter Notebook run on its own…

This is a detailed view.

jupyter notebook & will do the job

what do you mean by in the background ?

Go to your student pack page and click on aws educate option > you will get access to unique link > then provide university name and your email ending with your university domain and other asked details.

if you ran it already ctrl+z and then run bg

I caught @jeremy saying that it’s a practical idea to just use anaconda on Windows if you are on Windows 8.1. That’s my situation as I’ve got anaconda running before the course.

1 Like

Here is a link to the second part of the workshop https://goo.gl/2YRsZa

2 Likes
conda update --all

This will update all packages!

2 Likes