How to run Conda?

I installed Anaconda and can run Python, so I assume that I installed it correctly. Following this introductory documentation, I am trying to install Python v3.3, so I am copying and pasting the following line into my console: conda create -n py33 python=3.3 anaconda However, that gives me an error: -bash: conda: command not found … Read more

How to update an existing Conda environment with a .yml file

How can a pre-existing conda environment be updated with another .yml file. This is extremely helpful when working on projects that have multiple requirement files, i.e. base.yml, local.yml, production.yml, etc. For example, below is a base.yml file has conda-forge, conda, and pip packages: base.yml name: myenv channels: – conda-forge dependencies: – django=1.10.5 – pip: – … Read more

How do I install Python OpenCV through Conda?

I’m trying to install OpenCV for Python through Anaconda, but I can’t seem to figure this out. I tried conda install opencv conda install cv2 I also tried searching conda search cv No cigar. I ran across this which lists opencv as an included package: http://docs.continuum.io/anaconda/pkgs.html After running conda info I noticed my version is … Read more

Jupyter Notebook not saving: ‘_xsrf’ argument missing from post

I’ve been running a script on jupyter notebooks for about 26 hour; I haven’t really been using my computer for anything else, but it needs to run this program that will take ~30 hours to complete. At about 21 hours in, it stopped saving and my terminal had this: 403 PUT /api/contents/[file.ipynb] (::1): ‘_xsrf’ argument … Read more