# Can I know the version of rasa and spacy?

**URL:** https://forum.rasa.com/t/can-i-know-the-version-of-rasa-and-spacy/51410
**Category:** Rasa Open Source
**Created:** [February 17, 2022, 2:55am UTC](https://forum.rasa.com/t/can-i-know-the-version-of-rasa-and-spacy/51410 "2022-02-17T02:55:57Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Givan](https://avatars.discourse-cdn.com/v4/letter/g/3ab097/32.png) [@Givan](https://forum.rasa.com/u/Givan)
#### Post date: [February 17, 2022, 2:55am UTC](https://forum.rasa.com/t/can-i-know-the-version-of-rasa-and-spacy/51410/1 "2022-02-17T02:55:57Z")

</div>

When I run the command `pip3 install rasa[spacy]` what’s the version of rasa and spacy installed? can I use two commands: （1）`pip3 install rasa==xxx` (2) `pip3 install spacy==xxx` ?

---

<div class="post-metadata">

### Author: ![vio\_lovis](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/vio_lovis/32/17910_2.png) [@vio\_lovis](https://forum.rasa.com/u/vio_lovis)
#### Post date: [February 17, 2022, 7:04am UTC](https://forum.rasa.com/t/can-i-know-the-version-of-rasa-and-spacy/51410/2 "2022-02-17T07:04:48Z")

</div>

Hi, Givan!  
Yes, you can specify the version by running, e.g.:

```auto
pip install rasa==2.8.1
pip install rasa-sdk==2.8.1

```

If you need a step by step instruction how to install rasa you might wanna take a look here:  
[Windows installtion of Rasa x - #4](http://forum.rasa.com/t/windows-installtion-of-rasa-x/46079/4)  
or  
[Rasa X runs with several Errors & Warnings - #7 by vio\_lovis](http://forum.rasa.com/t/rasa-x-runs-with-several-errors-warnings/49006/7)  
@nik202 walked my through all the steps 👆

I hope that’s helpfull to you.  
Ciao, Vio

---

<div class="post-metadata">

### Author: ![nik202](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/nik202/32/16098_2.png) [@nik202](https://forum.rasa.com/u/nik202)
#### Post date: [February 17, 2022, 12:32pm UTC](https://forum.rasa.com/t/can-i-know-the-version-of-rasa-and-spacy/51410/3 "2022-02-17T12:32:53Z")

</div>

> [@Givan](#):
>
> When I run the command `pip3 install rasa[spacy]` what’s the version of rasa and spacy installed

`rasa --version` or `pip list` to know the version installed.

It will install the latest version of rasa and spacy until you mention a specific version as guided by @vio_lovis 👍

---

<div class="post-metadata">

### Author: ![Givan](https://avatars.discourse-cdn.com/v4/letter/g/3ab097/32.png) [@Givan](https://forum.rasa.com/u/Givan)
#### Post date: [February 18, 2022, 3:48am UTC](https://forum.rasa.com/t/can-i-know-the-version-of-rasa-and-spacy/51410/4 "2022-02-18T03:48:53Z")

</div>

When I run the command `pip install rasa`, rasa and rasa-sdk will be installed at the same time? And the command `pip install rasa==2.8.1`, rasa-sdk will not be installed?

---

<div class="post-metadata">

### Author: ![vio\_lovis](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/vio_lovis/32/17910_2.png) [@vio\_lovis](https://forum.rasa.com/u/vio_lovis)
#### Post date: [February 18, 2022, 9:44am UTC](https://forum.rasa.com/t/can-i-know-the-version-of-rasa-and-spacy/51410/5 "2022-02-18T09:44:45Z")

</div>

Hi, Givan!  
When you run `pip3 install rasa` it will install rasa and rasa-sdk. You can check by typing `rasa --version`, you will see something like this:

```auto
Rasa Version : 3.0.4
Minimum Compatible Version: 3.0.0
Rasa SDK Version : 3.0.2
Rasa X Version : None
Python Version : 3.8.0
Operating System : whatever your system is
Python Path : C:\Users\xxxx\xxxx\xxxx\
 

```

Maybe this is helpful to you? [Installing Rasa Open Source: Windows 10 (Updated 2021) - YouTube](https://www.youtube.com/watch?v=GlR60CvTh8A) Please be aware of the note: “If you experience long install times with pip, try downgrading pip to 20.2.”

Ciao, Vio
