# Pluto not respecting project environment

**URL:** https://discourse.julialang.org/t/pluto-not-respecting-project-environment/65308
**Category:** New to Julia
**Tags:** pluto
**Created:** [July 26, 2021, 3:05pm UTC](https://discourse.julialang.org/t/pluto-not-respecting-project-environment/65308 "2021-07-26T15:05:48Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![disberd](https://avatars.discourse-cdn.com/v4/letter/d/8edcca/32.png) [@disberd](https://discourse.julialang.org/u/disberd)
#### Post date: [July 26, 2021, 3:36pm UTC](https://discourse.julialang.org/t/pluto-not-respecting-project-environment/65308/2 "2021-07-26T15:36:38Z")

</div>

When you create a new notebook Pluto puts it with a temporary name under `~\.julia\pluto_notebooks`  
So if you simply tried to create a new notebook and do

```julia
begin
	import Pkg
	Pkg.activate(".")
end

```

You would not be activating the path from where you started Julia, but the temporary `pluto_notebook` subfolder.

Try either saving the notebook inside your project folder, or giving the full path of your project to `Pkg.activate()`.

All of this is due to the new integrate package manager that shipped with Pluto v0.15.0 that is described in more detail here:  
[https://github.com/fonsp/Pluto.jl/wiki/🎁-Package-management](https://github.com/fonsp/Pluto.jl/wiki/%F0%9F%8E%81-Package-management)

---

_[View the full topic](https://discourse.julialang.org/t/pluto-not-respecting-project-environment/65308)._
