This is output of the command conda install gcc
:
Solving environment: failed PackagesNotFoundError: The following packages are not available from current channels: - gcc-6
The solution is very simple, you just need to download the folder from the repository, then put it into the folder where your jupyter-c-kernel is installed. For example, I am using anaconda, thus put it into /home/username/anaconda3/lib/python3. 6/site-packages/ . Then launch jupyter notebook , enjoy!
I'm not sure how exactly the packages relate, but I needed to install the gcc
package to resolve some sort of load error. Given that gcc
didn't produce any results, I ran a quick
$ conda search gcc
Which yielded, among other things, gcc_linux-64
. After
$ conda install gcc_linux-64
My issue went away, despite the fact that which gcc
still pointed to the system install 🤷♂️
I had to install two conda packages to fix this issue:
$ conda install gcc_linux-64 $ conda install gxx_linux-64
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With