redis安装

ubuntu server
安装openssh server
sudo apt-get install build-essential
wget <a title="Use CTRL + click or middle-click to open in a new tab" href="javascript:void(0);">http://redis.googlecode.com/files/redis-1.02.tar.gz</a>
<meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="font-family: Verdana;"><pre class="codeblock python python python" name="code" style="padding: 5px; color: rgb(0, 100, 0);">$ tar xvzf redis-1.02.tar.gz $ cd redis-1.02 $ make

我在py中经常犯的一个错误是,将模块的名称命名成和原来的要用的模块同名比如
redis.py,导致找不到相关的模块,在改名后又由于没有删除同名的redis.pyc文件而造成错误


原文地址:https://www.cnblogs.com/lexus/p/1691703.html