# Unable to install PackageCompiler

**URL:** https://discourse.julialang.org/t/unable-to-install-packagecompiler/32587
**Category:** General Usage
**Created:** [December 22, 2019, 8:51pm UTC](https://discourse.julialang.org/t/unable-to-install-packagecompiler/32587 "2019-12-22T20:51:12Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![johannspies](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/johannspies/32/11282_2.png) [@johannspies](https://discourse.julialang.org/u/johannspies)
#### Post date: [December 22, 2019, 8:51pm UTC](https://discourse.julialang.org/t/unable-to-install-packagecompiler/32587/1 "2019-12-22T20:51:12Z")

</div>

I am not able to install PackageCompiler:

```julia
(v1.3) pkg> rm -m PackageCompiler
  Updating `~/.julia/environments/v1.3/Project.toml`
  [0cdbb3b1] - JuliaManager v0.1.1
  Updating `~/.julia/environments/v1.3/Manifest.toml`
  [0cdbb3b1] - JuliaManager v0.1.1
  [9b87118b] - PackageCompiler v0.6.4

(v1.3) pkg> add PackageCompiler
 Resolving package versions...
ERROR: Unsatisfiable requirements detected for package FixedPointNumbers [53c48c17]:
 FixedPointNumbers [53c48c17] log:
 ├─possible versions are: [0.5.0-0.5.3, 0.6.0-0.6.1, 0.7.0] or uninstalled
 ├─restricted to versions 0.5.3 by an explicit requirement, leaving only versions 0.5.3
 └─restricted by compatibility requirements with Colors [5ae59095] to versions: 0.6.0-0.6.1 — no versions left
   └─Colors [5ae59095] log:
     ├─possible versions are: [0.9.0, 0.9.2-0.9.6, 0.10.0, 0.11.0] or uninstalled
     └─restricted to versions 0.9.6 by an explicit requirement, leaving only versions 0.9.6

```

---

<div class="post-metadata">

### Author: ![anon92994695](https://avatars.discourse-cdn.com/v4/letter/a/ce7236/32.png) [@anon92994695](https://discourse.julialang.org/u/anon92994695)
#### Post date: [December 22, 2019, 9:05pm UTC](https://discourse.julialang.org/t/unable-to-install-packagecompiler/32587/2 "2019-12-22T21:05:58Z")

</div>

This same error recently happened to me with my package. So, what I found was running `update` cleaned up dependency issues that I had no idea were happening. Not saying this is the case here, but it’s an obvious thing to try if you haven’t yet.

---

<div class="post-metadata">

### Author: ![00vareladavid](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/00vareladavid/32/23521_2.png) [@00vareladavid](https://discourse.julialang.org/u/00vareladavid)
#### Post date: [December 22, 2019, 11:31pm UTC](https://discourse.julialang.org/t/unable-to-install-packagecompiler/32587/3 "2019-12-22T23:31:32Z")

</div>

A crude workaround (given one is not doing anything special like tracking unregistered dependencies) is to delete the manifest file `~/.julia/environments/v1.3/Manifest.toml` then proceed normally with `(v1.3) pkg> add PackageCompiler`.

Note the `Pkg` resolver in Julia 1.4 has been adjusted to avoid these kinds of errors in the first place.
