Optimisation for Artificial Intelligence, a 4-day course
« Previous | Up ↑ | Next »
You will need to set up by yourself the following pieces:
Download and install Visual Studio Code.
If you already have Visual Studio Code, install the latest version.
the pixi
tool: you will get installation instructions here.
For Windows, follow the “PowerShell” instructions (look for a PowerShell on your system, it’s there I promise.)
For those who already know a little, pixi
is a minimal tool providing environments similar to Anaconda, but we will not use Anaconda;
(base)
:conda config --set auto_activate_base false
understand that you will need a terminal for cloning learning materials, installing dependencies and more.
You are expected to be familiar with the most basic shell commands to list a directory, create and move files, change permissions, etc.
the git
(or git.exe
for Windows users) program, for version control.
Using Git falls out of scope of this seminar, but you are strongly encouraged to become proficient with it.
You may find resources on GitHub Learning Lab, e.g. the following course for first-timers.
Try running git --version
. If necessary, install git
:
Operating system | Installation command |
---|---|
Linux (Ubuntu) | sudo apt install git |
MacOS (preferred) | brew install git |
Windows or MacOS | pixi global install git |
clone the resources for the course:
git clone https://github.com/xoolive/optim4ai
Windows users should install the dependencies within their Ubuntu subsystem.
You may move the folder at any time if you prefer to keep things sorted differently on your computer.
install the dependencies with pip when needed
« Previous | Up ↑ | Next »