mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			518 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			518 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
Installation
 | 
						|
============
 | 
						|
 | 
						|
pip install spacy
 | 
						|
-----------------
 | 
						|
 | 
						|
The easiest way to install is from PyPi via pip::
 | 
						|
 | 
						|
    pip install spacy
 | 
						|
 | 
						|
git clone http://github.com/honnibal/spaCy.git
 | 
						|
----------------------------------------------
 | 
						|
 | 
						|
Installation From source via `GitHub <https://github.com/honnibal/spaCy>`_, using virtualenv::
 | 
						|
 | 
						|
    $ git clone http://github.com/honnibal/spaCy.git
 | 
						|
    $ cd spaCy
 | 
						|
    $ virtualenv .env
 | 
						|
    $ source .env/bin/activate
 | 
						|
    $ pip install -r requirements.txt
 | 
						|
    $ fab make
 | 
						|
    $ fab test
 |