I have installed kite for jupyterlab to use on a remote server, and seems that they don't support it. It shows a fix message every minute, and I want to get rid of it.
Here, it says that in Linux you can uninstall it by running the file in ~/.local/share/kite/uninstall, but there's no kite directory there. I couldn't find such a file. How should I remove it?
If you use pip as your package manager, you can do this:
python -m pip uninstall jupyterlab_kite
I just did it, and that was the missing piece in finally uninstalling kite from JupyterLab to get rid of the message at the bottom saying "kite not found"
Related
I ran pip install --user pylint
without getting any error, but I get pylint: command not found when I try pylint foo.py although there is a directory /Users/erc/Library/Python/2.7/lib/python/site-packages/pylint containing what I would guess are all the necessary files (although no pylint.py but maybe the __main__.py or __ini__.py are there for that). Also, I get nothing withwhich pylint.
What can I try?
I had faced the same issue even though I had pylint as well as pip installed. The issue is because the path is not pointing to the place where these libraries are present.
eg: my path - programs/python/python35/ and whereas my pip and pylint were installed in programs/python/python35/Scripts.
So when I added the path to environment variable it worked.
After installing apache2 im trying to create symlink from folder site-available to site-enabled. After it had been done apache2 just stops working. While trying to reload it it says "job for apache2.service failed". systemtlc in photos. What am I doing wrong?
Commend for symlink im using:
ln -s ../sites-available/010-dev.conf 010-dev.conf
I should also add that after creating the symlink, removing it doesnt fix apache. Even apache default site is still not loading, I have to reinstall apache.
systemtlc
Look at the apache's error log file (usually it is located under /var/log/httpd/error.log or /var/log/apache/error.log or something like that). It will have more info about the error.
I have a problem when trying to add a package in the terminal using Pkg.add, the terminal gives me the following error message:
fatal:your current branch 'master' does not have any commits yet
Error: failed process: Process(`git' --git-dir=````)
How do I fix it?
I've had the same issue with Gadfly. Installation failed and I couldn't load nor reinstall the package.
After looking at the documentation.
Turns out there is a cache folder (with the same name as the package) hidden in Users\my_username\.julia\v0.4\.cache\ I removed this folder and the package installed fine from Julia running Pkg.add("Gadfly").
Try removing the folder and install the package again.
Please give more information about where this package comes from. Github? Your hard drive? A zip file?
If this is one of your packages, just create a commit.
git add .
git commit -m 'First commit'
This should work.
I've been trying to install MacPorts on a new Mac Pro with a fresh, fully updated Yosemite OS. The installer hangs on 'Running package scripts'. So I tried to build it from source. That works, with the installer stating:
Congratulations, you have successfully installed the MacPorts system.
However, it seems unusable. When I do sudo port install apache2 I get the message:
Error: Port apache2 not found
Simply trying to do a 'self update' (as root):
sh-3.2# port -d selfupdate
DEBUG: MacPorts sources location: /opt/local/var/macports/sources/rsync.macports.org/release/tarballs
---> Updating MacPorts base sources using rsync
receiving file list ... done
base.tar
...and then nothing... I've waited for half an hour, but it won't go any further. I can't find any logs either.
Again: there's nothing special about my setup, it's out-of-the-box Yosemite, only updated through the App store and, of course, I've installed Xcode with command line utilities and formally accepted the license, as is required according to the MacPorts site.
I've also tried uninstalling it, using the instructions from the MacPorts site, and reinstalling. But it does not make a difference.
I've read quite a few forum posts, but I can't find any post relating a problem like this. I hope someone can shed some light on this.
The installer hangs running package scripts because the last statement in these package scripts is exactly this "sudo port selfupdate" that you've been running manually afterwards.
Because this step did never run, your MacPorts installation lacks knowledge about the apache2 port (which is exactly why the installer runs selfupdate to give you a full-featured installation).
Unfortunately Apple's infrastructure (rsync.macports.org) seems to have connectivity problems at the moment, which is causing problems for quite a few people. You can try using one of the mirrors as outlined at https://trac.macports.org/wiki/Mirrors.
I've installed Modx on mij webaccount. if i want to install packages i've got errors when installing.
Downloading of the packages is working. When i want to install ik get this error:
Could not transfer package wayfinder-2.3.0-pl.transport.zip to /var/www/vhosts/**/httpdocspackages/.
Could not install package with signature: wayfinder-2.3.0-pl
I tried to create the directory by hand and give it permission 777, this also not working. I think it's a configuration propertie because it's also with other packages.
That directory, /var/www/vhosts/**/httpdocspackages/ seems wrong.
Where did you install MODX? Where is your Core directory?
MODX will try to put packages into your core/packages directory, but something seems to be wrong in travelling to that path.