In Anaconda Enterprise Notebooks you can upload files using the Workbench application in your project. By default, you can upload up to 256MB.
To upload a file larger than 256 MB:
- Compress the file using Zip or Tar. This can be done on your local system with the tools available on your Operating System.
- Or you can use the SCP command, which allows you to securely copy from your local system into your AEN project.
From the AEN Terminal application in your project, run:scp localuser@local_machine_IP_address:<path_to_file_on_localsystem> <path_to_move_to_in_project>
NOTE: Replace<path_to_file_on_localsystem>
with the path to the file on your computer, and replace<path_to_move_to_in_project>
with the path to the project in Anaconda Enterprise Notebooks.
TIP: You can also use~/filename
to specify a file in your local system and"."
to specify the current working directory in AEN Terminal that you are running the command from:scp testuser@local_machine_IP_address:~/filename
Example:scp testuser@192.168.0.x:~/test.ipynb