toposon is not installing - topojson

To install toposon I am running
run npm install -g topojson
in command prompt
It throws error 'run' is not recognized as an internal or external command,
operable program or batch file.
I have also install GDAL
Please help me in installing toposon on windows 7
Thanks in advance.

Related

How to use "make" with Windows and Anaconda?

I am attempting to follow this tutorial to learn how to use the Cookiecutter folder structure for data science projects. My machine is running Windows 10 and I am using Anaconda.
It seems that the Cookiecutter project structure relies heavily on Makefiles, as does the above tutorial I am trying to follow.
Is there a way to use make on Windows and while using Anaconda?
What I've tried....
The first step is to check my installations. I open Anaconda command prompt and run each of the following.
conda --version
make --version
git --version
cookiecutter --version
When I run make --version I get the following error. 'make' is not recognized as an internal or external command, operable program or batch file.
When I attept to install make by running conda install -c anaconda make, I get:
PackagesNotFoundError: The following packages are not available from current channels:
- make
Looking at the Anaconda make documentation here, I see it is not available for Windows.
More searching led me to m2w64-make, with documentation found here.
I open an Anaconda command window and install the package using conda install -c conda-forge m2w64-make. Installation appears to run with no errors.
However when I attempt to run this package, nothing happens.
When I run m2w64-make --version I get:
'm2w64-make' is not recognized as an internal or external command,
operable program or batch file.
When I run make --version I get:
'make' is not recognized as an internal or external command,
operable program or batch file.
This Stack Overflow post appears to be very similar at first, but all of the answers tell the OP to use Chocolatey, and do not give an option for Anaconda.
Running mingw32-make --version works.

'deno-init' is not recognized as an internal or external command, operable program or batch file [duplicate]

This question already has answers here:
What is the reason for "X is not recognized as an internal or external command, operable program or batch file"?
(4 answers)
Closed 1 year ago.
I have installed Deno on Windows10. This is the Deno version I see in CMD:
deno --version
deno 1.16.3 (release, x86_64-pc-windows-msvc)
v8 9.7.106.5
typescript 4.4.2
When I try deno-init -y --name backend it gives me this error message:
'deno-init' is not recognized as an internal or external command,
operable program or batch file.
According to the documentation, first run deno install to install deno-init:
deno install --allow-read --allow-run=git --allow-write -n deno-init https://deno.land/x/init#v1.5.2/mod.ts
You can install deno-init from a GitHub raw URL with a tag as well, or
without one to get the latest and greatest (though also unreleased)
version:
deno install --allow-read --allow-run=git --allow-write -n deno-init https://raw.githubusercontent.com/GJZwiers/deno-init/main/mod.ts
To

How To Install Solidity Compiler and Remix? [duplicate]

This question already has answers here:
'npm' is not recognized as internal or external command, operable program or batch file
(37 answers)
npm command not found in Windows 10
(2 answers)
Closed 5 months ago.
I am really confused. I'm new to Ethereum. I have tried watching videos and I have got a vague idea of it, I have tried installing remix via CMD but every time I put:
npm install -g solc
into CMD it always comes out with this error:
'npm' is not recognized as an internal or external command,
operable program or batch file.
I'm using Windows 10.
Thanks :)
If you are new, why not trying the web version first?
https://remix.ethereum.org/
To answer your question, to install npm packages, you need to install npm first.
https://www.npmjs.com/get-npm
To install solc - Solidity Compiler over npm you need to install node package manager first.
here are the links
https://nodejs.org/en/download/
https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
https://www.npmjs.com/package/solc

How to install and run brew.sh in command prompt?

I have a error in command prompt:
brew is not recognized as an internal or external command
Homebrew is only for MacOSX.
For Windows you can try with followings:-
Chocolatey
Npackd
Scoop
OneGet for Windows 10

'slc' is not recognized as an internal or external command, operable program or batch file

I am trying to get StrongLoop working on my Windows 7 machine.
I installed it with npm install -g strongloop
It threw some python errors, which seems to be expected and then execution finished.
I did the npm install npm step as indicated here: http://docs.strongloop.com/display/public/LB/Installing+StrongLoop#InstallingStrongLoop-Windows
When I try 'slc' on the command line it gives the above error. I added it to the path manually and still nothing. Even when I go right into the directory where the slc file is ({user}\AppData\Roaming\npm\node_modules\strongloop\bin) and try to use it from there it says the same thing. Like the file that was installed is not executable.
Is this the right file? Is there another one somewhere? Drawing a blank here.
This happened to me as well.
Try uninstalling strongloop like so: npm remove strongloop
Then install it again with Microsoft Visual Studio 2012.
Make sure it's installed, and run the npm command like so:
npm install -g strongloop --msvs_version=2012
Even if you see errors and warnings, ignore them and let it run until it's done.
If you still have errors you can check them in builderror.log that should be in:
C:\Users\<user>\AppData\Roaming\npm\node_modules\strongloop\node_modules\node-inspector\node_modules\ws

Resources