This Challenge was posted 1 year ago
Team BearingPoint - Nicht versiegelte Flächen
↓ Open
Presentation
data_hackdays
Description
Setup
Cloning Repository in ML Studio
git config --global user.name 'your username here'
git config --global user.email 'your email here'
Generate an ssh key:
ssh-keygen -t ed25519 -C "your_email@example.com"
Save the key in your home directory.
Use the following command to see your public ssh key:
cat ~/.ssh/id_ed25519.pub
In your github page, go to settings > SSH and GPG Keys Here add your ssh key that you copied to the clipboad in the step prior. Type yes (the whole word) and press enter and you are done
Test you ssh connection by using this command:
ssh -T git@github.com
Conda Environment Setup
To setup the conda environment, run the following command:
$ create_conda_env.sh
Use the following command to activate the created conda environment:
$ conda activate vision
Visual Studio Code
Visual Studio Code allows to edit and run files on Azure.
Add your own debugging configuration to the launch.json
file.
example:
"configurations": [
{
"name": "FlosConfig",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"python": "/anaconda/envs/vision/bin/python",
"cwd": "~/cloudfiles/code/Users/florian.sonderegger/data_hackdays",
"justMyCode": true
}
]
Preview of
external content.
Previous
Data Hackdays BE 2023
Next project