install g++ on windows

install c++/g++ on windows

install c++/g++ on windows

link 原文

1. 算是提示吧:

Pick the drive and a folder in which you want to install g++. I’ll assume that it is C:, but you can choose a different one. If you choose a different drive or a different folder, you’ll need to adapt the directions below accordingly.

2 下载 full.exe

这个文件的安全性不懂,反正下载了安装后就有一些在Linux常看到的指令的.exe文件比如ls mv … (这个让我意外收获了,我是一个喜欢在Linux下码的boy)下载完后点击安装。

3 添加环境变量

Start -> Control Panel -> System -> Advanced -> Environment Variables双击PATH编辑,以;作为分隔添加环境变量的路径:C:\cygnus\cygwin-b20\H-i586-cygwin32\bin这个路径应该都是一样的。注意不要使用pwd命令然后复制路径,斜杠会成这样的/cygnus/cygwin-b...因为在哪个文件路径下有pwd.exe这个程序。被坑了

4 重启

g++ -g hello.cpp -o hello -lm这个命令就可以用了
and 一些实用的Linux命令
warmingA Cygnus Solutions entry will appear in your Programs menu, and an icon may appear on your desktop. Don’t use them!

If you’d like to learn more about where this free compiler came from, we downloaded it from an older site of http://sourceware.org/cygwin/

时间: 2024-10-16 17:20:44

install g++ on windows的相关文章

[坑况]——windows升级node最新版本报错【npm install -g n】

我本来是下载一个vue-cli的,然后技术日新月异,告知我要先把我的node升级到8以上(目前是v6.1.13) 升级就升级,升级就报错 尝试第一种方法,网上最多的一种方法,估计也是成功最多的一种吧(要是我也成功了的话,我就不需要写这篇文章了) 1 1. 第一步 2 npm -g install n 3 2. 第二步 4 n stable (更新至最新稳定版本) 5 6 附带常用命令 7 n //会列出所有安装的版本供你切换 8 9 n latest //安装最新版本 10 11 n stabl

Install MongoDB on Windows (Windows下安装MongoDB)

Install MongoDB on Windows Overview Use this tutorial to install MongoDB on a Windows systems. PLATFORM SUPPORT Starting in version 2.2, MongoDB does not support Windows XP. Please use a more recent version of Windows to use more recent releases of M

install pip on windows

Download Setuptools and pip You can download pip from github Setuptools from bitbucketAnd confirm this aren’t harmful. Open Console As an Admin, just open console in the download folder. And run, python ez_setup.pypython get-pip.py Additional Recomme

【buildroot-2011.11】You may have to install 'g++' on your build machine

buildroot - 2011.11 交叉编译器制作时,提示如下错误: "You may have to install 'g++' on your build machine" 还提示:toolchain/dependencies/dependencies.sh 121 Error 打开toolchain/dependencies/dependencies.sh,有如下一段脚本 # check for host CXX CXXCOMPILER=$(which $HOSTCXX 2&

Ubuntu install g++

We can use two ways to  install g++ on Ubuntu. 1.  a. sudo apt-get install make gcc g++.      b. sudo apt-get install manpages-dev. 2. sudo apt-get install build-essential.

npm install -g 全局安装总是出现permission权限问题的解决方案

开始使用node的时候,在使用npm安装global packages时,习惯性地使用npm install -g xxx,然后总是提示权限问题,安装失败. 需要使用sudo.这问题确实让我比较窝火.一个package完全没有必要放入到需要特殊权限的/usr/local/目录,于是想办法解决它. 这里提供一种解决方案,将npm的global package安装路径放入到当前用户的home目录下,避免使用sudo,一样可以安装global的npm package: #brew install no

npm install -g ios-deploy 失败问题的解决方法 转载

当使用Cordova或ionic命令行时, npm install -g iOS-deploy 或sudo npm install -g ios-deploy 都报错, 如: npm WARN lifecycle [email protected]~preinstall: cannot run in wd %s %s (wd=%s) [email protected] ./src/scripts/check_reqs.js && xcodebuild /usr/local/lib/node

npm install -g vue-cli 报错

解决发案: 第一步:查看默认全局安装路径.指令:npm config get prefix 复制默认全局安装路径在你的系统显示目录中删除npm文件夹.对于大多数系统显示目录为:/usr/local 第二步:cmd进入到你的项目路径初始化npm就会生成一个package.json文件.指令:npm init -f -f表示force的意思,不加这个,npm会让你输入一堆信息,比如name.version之类,如果只是做做实验小demo,直接-f,npm帮你初始化package.json,并填充各种

1.在cmd界面搭建react-native 环境: 可参考https://reactnative.cn/docs/0.51/getting-started.html#content   (1)npm install -g yarn react-native-cli       安装yarn命令工具和react-native命令工具,Yarn是Facebook提供的替代npm的工具,可以加速n

http://www.bubuko.com/infodetail-2599307.html 1.在cmd界面搭建react-native 环境: 可参考https://reactnative.cn/docs/0.51/getting-started.html#content (1)npm install -g yarn react-native-cli 安装yarn命令工具和react-native命令工具,Yarn是Facebook提供的替代npm的工具,可以加速node模块的下载. Reac