How to upgrade graphlab create? - ipython

I want to know where to paste this command
pip install graphlab-create==1.6.1
so that it can upgrade my graphlab create.
I use windows 10 64 bit.

You should type this in your terminal. If you have installed it using the Dato Launcher, then you can get access to the terminal by clicking on the "Terminal" icon.

Related

Strange vscode issue in WSL

I've been trying to set up the vscode code . shortcut to work in WSL. Following the instructions from the vscode website, I reinstalled vscode in windows, reinstalled the Remote-Wsl extension, made sure it was in my System Path, and tried running code . in the WSL linux distro terminal. I get the message instructing me to install it on the windows side, and asking me if I want to continue. I hit yes, but it doesn't create the code server folder in my home directory. Typing code . again does the same thing.
Does anyone know why this may be?
This is the output text:
To use Visual Studio Code with the Windows Subsystem for Linux, please install Visual Studio Code in Windows and uninstall the Linux version in WSL. You can then use the code command in a WSL terminal just as you would in a normal command prompt.
Do you want to continue anyway? [y/N]
The error message isn't just pointing out that you need to install the Windows version, but it indicates that you have the Linux version installed in WSL and should remove it.
From that, it sounds like at some point you may have installed the Linux version of VSCode in WSL, and that one is taking priority. You'll need to uninstall it in order to run the Windows version of VSCode with the "Remote - WSL" extension.
You don't mention what distribution you are running, but if it is Ubuntu, try:
sudo apt remove code # or
sudo apt remove code-insiders
Also see the uninstall doc from Microsoft.

Netbeans: how to open an command line on Windows

Netbeans has a terminal window but it requires cygwin to be installed. Since I can't install cygwin (it requires admin permission), is there a way to open a Windows command line prompt(cmd) inside Netbeans?
Cygwin does need to be installed for NetBeans to have a Terminal window, and by default administrator rights are required to install it. However you can override that default requirement using the --no-admin argument when you install it.
See section 2.4 of the Cygwin FAQs:
2.4.
Can I install Cygwin without administrator rights?
Yes. The default installation requests administrator rights because
this allows to set up the Cygwin environment so that all users can
start a Cygwin shell out of the box. However, if you don't have
administrator rights for your machine, and the admins don't want to
install it for you, you can install Cygwin just for yourself by
downloading setup-x86.exe (for a 32 bit install) or setup-x86_64.exe
(for a 64 bit install) and then start it from the command line or via
the "Run..." dialog from the start menu using the --no-admin option,
for instance:
setup-x86.exe --no-admin
(While this is an answer, I am unfortunately not in a position to verify that it actually works.)
Make sure your Netbeans is closed while installing the Cygwin plugin, preferably download the . msi file for your PC's architecture(32 or 64 bits).
Thereafter Click on the tools bar above then you'll seen open in Terminal that should provide a terminal at the bottom of your Netbeans program.
Most importantly ensure your Netbeans is closed during installation.

Firefox JPM not showing any thing

I want to develop a Firefox addon, however I'm not able to complete the Addon SDK installation. I followed https://developer.mozilla.org/en-US/Add-ons/SDK/Tools/jpm#Installation this link, but when I type jpm in the terminal it shows nothing.
You need to download and install node.js (from here: https://nodejs.org/en/).
Once installed, open a command prompt and install jpm, by typing
"npm install jpm --global".
Close the cmd prompt, open another and jpm should be available
The reason is you didn't install latest version of nodejs so follow this link https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server

Emacs installed with homebrew only works in terminal

I just installed the latest Emacs with homebrew:
brew install emacs --with-cocoa
It installed successfully, but only runs in the terminal. When I installed it on another machine it starts a separate GUI window. Do I need to specify additional flags?
you can add it to your apps just by running the below command:
brew linkapps emacs
Doc on linkapps
Find installed formulae that provide .app-style OS X apps and symlink
them
into /Applications, allowing for easier access
If you're launching it from within the terminal application, you're more than likely running the emacs that ships with OS-X (v22, IIRC).
To launch the homebrew version, I created an alias in bash:
alias emacs='open -a /Applications/Emacs.app --args $1'
Then typing 'emacs' from the terminal launches the homebrew version.
Try this one https://github.com/railwaycat/emacs-mac-port it is not official but much better looking on OSX.
You want aquamacs.
It Just Works.

Error installing Netbean in Windows 8

I have tried everything possible to install Netbean 7.3.1 on my Windows 8 OS supporting laptop. However, it was not going through from here https://netbeans.org/downloads/index.html.
This is the message I got after downloading all the software from mentioned link when tried to install for each download:
CRITICAll nullnull
I downloaded JDK (Name of the file: jdk-7u25-nb-7_3_1-windows-x64) and when I tried installing JDK I got an error says:
cannot find bundled JVM to run installer
Please can anyone share step-by-step instructions?
Open command prompt in the directory where your netbeans setup file is located. (to open cmd prompt, press shift and right click anywhere in the directory window and hit 'open command prompt here')
Now type the following command in command prompt
netbeans-8.0-windows.exe --tempdir C:\Temp --userdir C:\NBI
hit enter.
This is apparently a bug, though not in netbeans. Check out comments 9 and 10 for a possible work-around.