My attempt at cryptopals
- Clone the repository
- Set PYTHONPATH="root repository folder"
- And to run,
python3 filename.py
from the folder the file is in.
All this is easier is vscode use following config open repository home with vscode use config .vscode/launch.json, with setting run from file folder
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd":"${fileDirname}",
"env": {
"PYTHONPATH":"${workspaceFolder}"
}
}
]
}