随笔分类 -  软件之安装

摘要:#################### GitBook 是一个现代文档平台,让每个人都可以通过文档创建、编辑和共享知识 什么是空间? 在 GitBook 中,空间是一个项目,您可以在其中开始组织您的想法。将其想象为一本虚拟书籍,您可以在其中开始单独编写页面或与团队成员异步协作。 ######### 阅读全文
posted @ 2023-06-24 12:52 igoodful 阅读(86) 评论(0) 推荐(0)
摘要:################################# [root@a8-cloud-apple-db08 sqlite-autoconf-3420000]# ./configure --prefix=/usr/local checking for a BSD-compatible in 阅读全文
posted @ 2023-06-23 13:18 igoodful 阅读(108) 评论(0) 推荐(0)
摘要:############################# 一、安装 1.安装keepalived依赖 dnf -y install openssl openssl-devel dnf -y install popt popt-devel # 用于支持ipv6 dnf -y install libn 阅读全文
posted @ 2023-04-05 01:09 igoodful 阅读(259) 评论(0) 推荐(0)
摘要:######################### bywave notepad++ git vscode qq 微信 ############################ 阅读全文
posted @ 2023-03-28 12:51 igoodful 阅读(26) 评论(0) 推荐(0)
摘要:##################### 需要准备以下: 开启外网; 开启外网(不要选择香港区,我这里选择的节点是美国区),然后清除了chrome浏览器里面的缓存,并开启chrome浏览器的无痕模式,在无痕模式下输入https://chat.openai.com/ ,点击注册,注册的时候,需要填写 阅读全文
posted @ 2023-03-12 20:00 igoodful 阅读(9) 评论(0) 推荐(0)
摘要:######### 卸载原来系统安装的包 # yum remove -y java cvs libselinux-devel postgresql mysql ecj jna sinjdoc 依赖包安装 # yum install -y numactl git lrzsz screen make c 阅读全文
posted @ 2019-11-18 23:48 igoodful 阅读(319) 评论(1) 推荐(0)
摘要:创建git用户和组 groupadd -g 11111 git useradd -md /home/git -g 11111 -u 11111 git 安装依赖包 yum install curl-devel expat-devel gettext-devel openssl-devel zlib- 阅读全文
posted @ 2019-11-18 23:39 igoodful 阅读(301) 评论(1) 推荐(0)
摘要:内核相关配置 https://github.com/digoal/blog/blob/master/201611/20161121_01.md# vi /etc/sysctl.conf # add by digoal.zhou fs.aio-max-nr = 1048576 fs.file-max 阅读全文
posted @ 2019-11-12 12:20 igoodful 阅读(683) 评论(0) 推荐(0)
摘要:root身份安装 创建用户 编译安装成功后,接下来要做的就是创建一个普通用户,因为默认超级用户(root)不能启动postgresql,所以需要创建一个普通用户来启动数据库,执行以下命令创建用户: [root@localhost build_dir]# groupadd postgres [root 阅读全文
posted @ 2019-11-10 14:53 igoodful 阅读(1711) 评论(1) 推荐(0)
摘要:##################################### 一、安装: 下载地址:https://nginx.org/en/download.html 在windows中安装后如 windows上kill掉所有nginx进程: #在windows上的cmd终端上执行 taskkill 阅读全文
posted @ 2019-11-09 22:28 igoodful 阅读(315) 评论(0) 推荐(0)
摘要:PyCharm是由著名的JetBrains公司所打造的一款功能强大的Python IDE,它具有一般IDE都具备的功能,并且使用起来非常方便好用。最近需求PyCharm激活码的网友非常多,小编就在这里给大家分享一下PyCharm2019最新可用的激活注册码。激活Pycharm专业版的方法有很多,小编 阅读全文
posted @ 2019-10-23 15:06 igoodful 阅读(1755) 评论(1) 推荐(0)
摘要:# 登录远程服务器需要ip和端口即可:还是开源工具用起来无忧无虑、无拘无束,这种感觉实在太舒服了,比起xshell开始免费、后来收费好太多太多,不用担心哪天过期了,想干嘛就干嘛。 软件下载地址:https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html 阅读全文
posted @ 2019-10-20 20:26 igoodful 阅读(1142) 评论(0) 推荐(0)
摘要:Linux安装Python2.7 以下例子基于python 2.7.9,其他版本同理。# 1、下载python# wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz 2、解压、编译安装(依次执行以下5条命令)# tar -zxv 阅读全文
posted @ 2019-09-26 09:51 igoodful 阅读(1161) 评论(0) 推荐(0)
摘要:下载: https://curl.haxx.se/download.html 安装: 二进制安装。即解压即可。 使用 1、获取页面内容。 不加任何参数时,默认会发送GET请求来获取url内容到标准输出。 分别测试了苹果、谷歌、小米、百度。发现获得的页面内容大小相差较大。苹果啥也不给,霸道。谷歌则给了 阅读全文
posted @ 2019-09-22 12:25 igoodful 阅读(2491) 评论(0) 推荐(0)
摘要:现象: 解决: 问题:就是没有安装pip工具 阅读全文
posted @ 2019-09-07 09:19 igoodful 阅读(1629) 评论(0) 推荐(0)
摘要:########################### django官网:https://www.djangoproject.com/ django的github官网:https://github.com/django/django.git 一、源码安装: #1、请到一个没有其他任何文件的目录下面执 阅读全文
posted @ 2019-09-06 21:35 igoodful 阅读(864) 评论(0) 推荐(0)
摘要:一、现象: pip list 显示出以下错误: DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a forma 阅读全文
posted @ 2019-09-05 22:17 igoodful 阅读(8784) 评论(0) 推荐(1)
摘要:在使用npm时,特别注意nodejs的版本问题。 一般选择源码安装 阅读全文
posted @ 2019-09-04 19:47 igoodful 阅读(411) 评论(0) 推荐(0)
摘要:sudo apt-get install rabbitmq-server 阅读全文
posted @ 2019-09-04 15:39 igoodful 阅读(200) 评论(0) 推荐(0)
摘要:sudo apt-get install python-django -y#django操作mysql数据库时还需要安装python-mysqldb驱动,当然mysql安装是必须的前提 sudo apt-get install python-mysqldb 阅读全文
posted @ 2019-09-04 10:59 igoodful 阅读(367) 评论(0) 推荐(0)