Closed dthboyd closed 7 years ago
From Terminal run:
/Users/davidboyd/anaconda/bin/activate root
Then show the output of conda info
and the output from conda list --show-channel-urls
Error: activate must be sourced. Run 'source activate envname' instead of 'activate envname'. david-boyds-iMac:pkgs davidboyd$ conda info Current conda install:
platform : osx-64
conda version : 4.2.13
conda is private : False
conda-env version : 4.2.13
conda-build version : 1.21.3
python version : 3.5.2.final.0
requests version : 2.10.0
root environment : /Users/davidboyd/anaconda (writable)
default environment : /Users/davidboyd/anaconda
envs directories : /Users/davidboyd/anaconda/envs
package cache : /Users/davidboyd/anaconda/pkgs
channel URLs : https://conda.anaconda.org/conda-forge/osx-64
https://conda.anaconda.org/conda-forge/noarch
https://repo.continuum.io/pkgs/free/osx-64
https://repo.continuum.io/pkgs/free/noarch
https://repo.continuum.io/pkgs/pro/osx-64
https://repo.continuum.io/pkgs/pro/noarch
config file : /Users/davidboyd/.condarc
offline mode : False
packages in environment at /Users/davidboyd/anaconda:
#
_nb_ext_conf 0.2.0 py35_0 defaults
alabaster 0.7.8 py35_0 defaults
anaconda custom py35_0 defaults
anaconda-client 1.4.0 py35_0 defaults
anaconda-navigator 1.2.1 py35_0 defaults
aplus 0.11.0 py35_0 conda-forge
appnope 0.1.0 py35_0 defaults
appscript 1.0.1 py35_0 defaults
argcomplete 1.0.0 py35_1 defaults
astropy 1.2.1 np111py35_0 defaults
babel 2.3.3 py35_0 defaults
backports 1.0 py35_0 defaults
backports.shutil_get_terminal_size 1.0.0 py35_0 conda-forge
beautifulsoup4 4.4.1 py35_0 defaults
bitarray 0.8.1 py35_0 defaults
blas 1.1 openblas conda-forge
blaze 0.10.1 py35_0 defaults
bokeh 0.12.0 py35_0 defaults
boto 2.40.0 py35_0 defaults
bottlechest 0.7.1 py35_0 defaults
bottleneck 1.1.0 np111py35_0 defaults
cachetools 2.0.0 py35_0 conda-forge
cffi 1.6.0 py35_0 defaults
chardet 2.3.0 py35_0 defaults
chest 0.2.3 py35_0 defaults
click 6.6 py35_0 defaults
cloudpickle 0.2.1 py35_0 defaults
clyent 1.2.2 py35_0 defaults
colorama 0.3.7 py35_0 defaults
conda 4.2.13 py35_0 conda-forge
conda-build 1.21.3 py35_0 defaults
conda-env 2.6.0 0 conda-forge
configobj 5.0.6 py35_0 defaults
contextlib2 0.5.3 py35_0 defaults
cryptography 1.4 py35_0 defaults
curl 7.49.0 0 defaults
cycler 0.10.0 py35_0 defaults
cython 0.24 py35_0 defaults
cytoolz 0.8.0 py35_0 defaults
dask 0.10.0 py35_0 defaults
datashape 0.5.2 py35_0 defaults
decorator 4.0.10 py35_0 defaults
dill 0.2.5 py35_0 defaults
docutils 0.12 py35_2 defaults
dynd-python 0.7.2 py35_0 defaults
entrypoints 0.2.2 py35_0 defaults
et_xmlfile 1.0.1 py35_0 defaults
fastcache 1.0.2 py35_1 defaults
findspark 1.1.0
The problem is that you have installed software from conda-forge
and conda-forge
and conda defaults
are mutually incompatible. In this case, at least icu
is problematic:
icu 56.1 4 conda-forge
Please force the installation of icu
from conda defaults
via:
conda install -c defaults icu
On 2016-11-29, at 4:01 PM, Ray Donnelly wrote:
conda install -c defaults icu
dyld: Library not loaded: @rpath/libncurses.5.dylib Referenced from: /Users/davidboyd/anaconda/lib/R/lib/../..//libreadline.6.2.dylib Reason: image not found
the new error after i do the above
Right, so we continue:
Looking at your output we see:
readline 6.2 0 conda-forge
therefore:
conda install -c defaults readline
It may be better not to install anything from conda-forge
, or to use separate environments for conda-forge
software and conda defaults
software.
thank you so much, R notebooks working now, i got the following message when i started up the notebook Warning: namespace ‘SparkR’ is not available and has been replaced by .GlobalEnv when processing object ‘predictions’, was wondering if this is a potential problem? Anyway, thanks again. On 2016-11-29, at 4:21 PM, Ray Donnelly wrote:
Right, so we continue:
Looking at your output we see:
readline 6.2 0 conda-forge
therefore:
conda install -c defaults readline
It may be better not to install anything from conda-forge, or to use separate environments for conda-forge software and conda defaults software.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
You probably had an old R installation from elsewhere and it left some files in your %AppData% folder.
Warnings are warnings, I try not to get overly concerned with them esp. when I have errors to deal with.
Creating new notebook in [I 15:35:49.247 NotebookApp] Kernel started: ebfa1f01-cb7b-432e-a109-8f87c2253f49 dyld: Library not loaded: @rpath/libicuuc.54.dylib Referenced from: /Users/davidboyd/anaconda/lib/R/bin/exec/../../..//R/lib/libR.dylib Reason: image not found
Please Help