Best Practices
- Always specify all the necessary package versions in the requirements.txt. Most dependency issues can be resolved by running
pip freeze > requirements.txt
in a place Grid has access to. - Don't use sessions for long running computations, instead use Grid run for async computations. The following steps will convert your notebook into a useable Python script by Grid:
- Click "file"
- Click "download as"
- Select "Python (.py)"