添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

😦电脑磕坏了

最近把公司给的mac屏幕给磕坏了,换成自己的macbookpro,本来想用时间机器做个无缝衔接,结果发现不能用了,跟客服沟通被告知macos版本在11以上不支持时间机器系统迁移,只能使用迁移助理做数据备份,非常痛苦!!!要重新安装各种环境,各种软件!!!!😤😤😤😤😤

🌟🌟🌟努力安装软件

安装了很多开发常用的工具,就不一一罗列了。还有各种环境配置,经过两天的时间,差不多达到了以前环境的80%,还有一些细节需要优化,工欲善其事,必先利其器。
于是我开始跑前端项目,安装完了nodejs,当我用 npm i 编译时,给我来了一大段报错

gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.
gyp ERR! stack     at PythonFinder.failNoPython (/Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/node-gyp/lib/configure.js:484:19)
gyp ERR! stack     at PythonFinder.<anonymous> (/Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/node-gyp/lib/configure.js:406:16)
gyp ERR! stack     at F (/Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/which/which.js:68:16)
gyp ERR! stack     at E (/Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/which/which.js:80:29)
gyp ERR! stack     at /Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/which/which.js:89:16
gyp ERR! stack     at /Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/isexe/index.js:42:5
gyp ERR! stack     at /Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/isexe/mode.js:8:5
gyp ERR! stack     at FSReqCallback.oncomplete (fs.js:192:21)
gyp ERR! System Darwin 21.5.0
gyp ERR! command "/usr/local/bin/node" "/Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd /Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/node-sass
gyp ERR! node -v v14.17.3
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
Build failed with error code: 1
npm WARN @babel/[email protected] requires a peer of @babel/core@^7.12.0 but none is installed. You must install peer dependencies yourself.
npm WARN @babel/[email protected] requires a peer of @babel/core@^7.13.0 but none is installed. You must install peer dependencies yourself.
npm WARN @babel/[email protected] requires a peer of @babel/core@^7.4.0-0 but none is installed. You must install peer dependencies yourself.
npm WARN @babel/[email protected] requires a peer of @babel/core@^7.4.0-0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] No repository field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] postinstall: `node scripts/build.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/scott/.npm/_logs/2022-06-08T09_20_09_286Z-debug.log
scott@ScottdeMacBook-Pro workflow-frontend-elem % npm install --save-dev node-sass
npm WARN deprecated [email protected]: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap.
> [email protected] install /Users/scott/project/dx_project/front_project/workflow-frontend-elem/node_modules/node-sass
> node scripts/install.js
Downloading binary from https://github.com/sass/node-sass/releases/download/v4.14.1/darwin-x64-83_binding.node
 

发现一段错误提示Error: Can‘t find Python executable “python“, you can set the PYTHON env variable,这提示貌也很明显,告诉我们没有python,我在终端检查了一下果然没有。
我记得macos是自带python2.7的,于是我查阅了一下资料,发现Moterey这个版本的操作系统移出了python,需要自己去安装。好吧,认命,我装。
于是我开始使用homebrew安装python3.X。

# 命令大概是这样子
brew install python3
brew link python3
 

细心的我观察到报错时调用的是’python’命令,于是在.bash_profile中增加了别名配置

alias python3='/usr/bin/python3'
alias python=python3
alias python2=python3
 

满心欢喜继续执行npm i 进行编译项目,结果还是报错😫😫😫,不过细心的我肯定会注意到这一句提示Downloading binary from https://github.com/sass/node-sass/releases/download/v4.14.1/darwin-x64-83_binding.node,这个node-saas从github去拉,没有拉下来。我不是已经改过了镜像源了么,于是我又查阅了一些资料。于是乎查到了一个命令。

👊👊终极解决方案

没错,我们需要改变它的下载地址👏👏,通过下面这个命令把下载地址改为淘宝镜像。

npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass
 

可以看到已经下载好了,这时候我们就可以正常的npm install了,所以有时候遇到问题不要慌,这个解决不了,那么就先解决下一个。🏃🏃只要你跑的够快,bug就追不上你。
点赞收藏,富婆包养

pex 是一个用于生成 .pex(Python EXecutable)文件的库,这些文件是本着virtualenvs精神的可执行 Python 环境。 pex 是对PEP 441 中概述的想法的扩展,并使 Python 应用程序的部署像cp一样简单。 pex 文件甚至可能包含多个特定于平台的 Python 发行版,这意味着单个 pex 文件可以跨 Linux 和 OS X 移植。 可以使用pex工具构建 pex 文件。 构建系统如Pants 、 Buck和{py}gradle也支持直接构建 .pex 文件。 仍然不确定 pex 做什么或它是如何工作的? 观看这个快速闪电谈话: WTF 是 PEX? . pex 在 Apache2 许可下获得许可。 要安装 pex,只需 $ pip install pex 您还可以使用 tox 在 git clone 中构建 在vue项目中执行 npm install 时,报 “ Can’t find Python executablepython”, you can set the PYTHON env variable.” 错误的原因是因为在系统环境变量中找不到python环境。 正常情况下,我们如果安装了python,并配置了环境变量,可以在系统环境变量中看到如图的配置: 情况一:已安装python,但没有配置环境变量 (1)如果我们不知道电脑有没有已安装python,可以在控制面版中查看是否存在python程 先自我介绍一下,小编13年上师交大毕业,曾经在小公司待过,去过华为OPPO等大厂,18年进入阿里,直到现在。最近把公司给的mac屏幕给磕坏了,换成自己的macbookpro,本来想用时间机器做个无缝衔接,结果发现不能用了,跟客服沟通被告知macos版本在11以上不支持时间机器系统迁移,只能使用迁移助理做数据备份,非常痛苦!还有各种环境配置,经过两天的时间,差不多达到了以前环境的80%,还有一些细节需要优化,工欲善其事,必先利其器。没错,我们需要改变它的下载地址?进行编译项目,结果还是报错?... pythondjangovue教程_Python+Vue+Django前后端分离项⽬ 实战课程 本季课程把基础知识拆解到项⽬⾥,让你在项⽬情境⾥学知识。 这样的学习⽅式能让你保持兴趣、充满动⼒,时刻知道学的东西能⽤在哪、能怎么⽤。 平时不明⽩的知识点,放在项⽬⾥去理解就恍然⼤悟了。 ⼀、融汇贯通 本视频采⽤了前后端分离的开发模式,前端使⽤Vue.js+Element UI实现了Web页⾯的呈现,后端使⽤Python 的Django框架实现了数据 访问的接⼝,前端通过Axios访问后端接⼝获得数据。在学习完本章节后,真正理解前后端的各⾃承担的⼯作。 ⼆、贴近实战 本系列课程为练⼿项⽬实战:学⽣管理系统v4.0的开发,项⽬包含了如下⼏个内容:项⽬的总体介绍、基本功能的演⽰、Vuejs的初始化、 Element UI的使⽤、在Django中实现针对数据的增删改查的接⼝、在Vuejs中实现前端增删改查的调⽤、实现⽂件的上传、实现表格的分 页、实现导出数据到Excel、实现通过Excel导⼊数据、实现针对表格的批量化操作等等,所有的功能都通过演⽰完成、贴近了实战 三、课程亮点 在本案例中,最⼤的 Can‘t find Python executablepython“, you can set the PYTHON env variable和Failed at the [email protected] postinstall script问题解决思路。 方法一:安装python环境,但是python必须是2.7。如果安装的是其他版本,则无效。安装完成后,且需配置环境变量。 方法二:执行 npm install --global --production JDK下载:这是必须要完成的选项(如果你的电脑从来没有安装过JAVA)。 浏览器输入网址:https://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html 进入如下页面:点击DOWNLOAD(注意版本号) 之后选择你电脑的版本,注意... Traceback (most recent call last): File “D:/flaskProject/test.py”, line 35, in test pool.apply(self.out, args=(i,)) File “Python37-32\lib\multiprocessing\pool.py”, line 261, in apply return self.apply_async(func, args, kwds).get() File “\lib\multiprocessing\pool.py”, line 657, in get raise se 坑1 : stack Error: Can’t find Python executablepython”, you can set the PYTHON env variable. 首先输入命令: npm install --global --production windows-build-tools npm config set python python2.7 尝试使用yarn a...