# Upgrading version of DataFrames (stuck at 0.21.8)

**URL:** https://discourse.julialang.org/t/upgrading-version-of-dataframes-stuck-at-0-21-8/61914
**Category:** New to Julia
**Created:** [May 27, 2021, 11:52am UTC](https://discourse.julialang.org/t/upgrading-version-of-dataframes-stuck-at-0-21-8/61914 "2021-05-27T11:52:30Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [May 27, 2021, 12:29pm UTC](https://discourse.julialang.org/t/upgrading-version-of-dataframes-stuck-at-0-21-8/61914/5 "2021-05-27T12:29:52Z")

</div>

Your second post answers your first - you have unsatisfiable requirements in your environment. Don’t just dump all your packages into the default environment, instead create a new environment for every project you work on with only the packages you actually need. This will minimize dependency conflicts.

If you do:

```julia
]activate --temp

]add DataFrames

```

you will get 1.1 installed in the temporary environment.

---

_[View the full topic](https://discourse.julialang.org/t/upgrading-version-of-dataframes-stuck-at-0-21-8/61914)._
