---
slug: "pipenv-system-skip-lock-dev-version"
title: "The Specified Version Was Not Installed with Pipenv"
description: "Even though the Pipfile specifies\n\n```plaintext\n[packages]\n...\nWerkzeug = \"<1.0.0\"\n```\n\nrunning\n\n```plaintext\npipenv install --system --skip-lock --dev --deploy\n```\n\ninstalls version 1.0.1."
url: "https://www.ytyng.com/en/blog/pipenv-system-skip-lock-dev-version"
publish_date: "2021-03-30T11:44:45Z"
created: "2021-03-30T11:44:45Z"
updated: "2026-02-27T09:53:48.006Z"
categories: ["Python"]
keywords: ""
featured_image_url: "https://media.ytyng.com/resize/20230812/22a5a531d262459caf5a01e5bdf31b83.png.webp?width=768"
has_video: false
has_music: false
video_urls: []
music_urls: []
lang: "en"
---

# The Specified Version Was Not Installed with Pipenv

<p>In the Pipfile,</p>
<pre><span>[packages]<br />...<br />Werkzeug </span>= <span>"&lt;1.0.0"</span></pre>
<p><span>is specified, but when I run</span></p>
<pre>pipenv install <span>--</span>system <span>--</span>skip-lock <span>--</span>dev <span>--</span>deploy</pre>
<p><span>version 1.0.1 gets installed.</span></p>
<p></p>
<p>In the case of --dev, I needed to specify the version of Werkzeug in dev-packages.</p>
<pre>[<span>dev-packages</span>]<br /><span mce-data-marked="1">...<br /></span><span>Werkzeug </span>= <span>"&lt;1.0.0"</span></pre>
<p></p>
