Azure / batch-scoring-for-dl-models

Batch Scoring For Deep Learning Models
MIT License
16 stars 7 forks source link

'No space left on device' error when create new conda env #17

Open YanZhangADS opened 6 years ago

YanZhangADS commented 6 years ago

I got 'No space left on device' error after executing "conda env create -f environment.yml".

  1. How do I know how much space left in my device in order to accommodate this new conda env?

  2. We should include only the must-have packages in the environment.yml file.

jiata commented 6 years ago

@YanZhangADS - You can try df to inspect your environment. Also try sudo apt autoremove to clear files.

Agreed on your second point - I will clean up environment.yml file. However, the environment should only be about 3G, so it should be manageable with most VMs.

fboylu commented 6 years ago

I agree that the environment file is very long, probably created by using conda env export. is there a way to start with clean environment and manually create the env file?