Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: third_party/psutil/README

Issue 8159001: Update third_party/psutil and fix the licence issue with it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove the suppression and unnecessary files. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/psutil/MANIFEST.in ('k') | third_party/psutil/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/psutil/README
diff --git a/third_party/psutil/README b/third_party/psutil/README
index feffe986f490afad155e1571229b31592b1729dd..18ca454a20e69babc560a32d7e09559745e9c65f 100644
--- a/third_party/psutil/README
+++ b/third_party/psutil/README
@@ -19,7 +19,7 @@ The easiest way to install psutil from sources is using easy_install.
Get the latest easy_install version from http://pypi.python.org/pypi/setuptools
and just run:
- > python easy_install psutil
+ > easy_install psutil
This should get the most updated psutil version from the Python pypi repository,
unpack it, compile it and install it automatically.
@@ -80,11 +80,11 @@ commands:
to build only:
- > ./setup.py build
+ > python setup.py build
to install and build:
- > ./setup.py install
+ > python setup.py install
NOTE: due to developer's hardware limitations psutil has only been compiled and
tested on OS X 10.4.11 so may or may not work on other versions.
@@ -99,20 +99,22 @@ the standard distutils commands:
build only:
- > ./setup.py build
+ > python setup.py build
install and build:
- > ./setup.py install
+ > python setup.py install
Installing on Linux
===================
-Standard distutils installation steps should apply here. At the current time
-the Linux port of psutil does not require any C modules, so can be installed
-without need for a compiler using disutils:
+gcc is required and so the python headers. They can easily be installed by using
+the distro package manager. For example, on Ubuntu:
-install/build:
+ > sudo apt-get install python-dev
+
+Once done, you can install/build psutil with:
+
+ > python setup.py install
- > ./setup.py install
« no previous file with comments | « third_party/psutil/MANIFEST.in ('k') | third_party/psutil/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698